adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetObjects Method / GetObjects(OID[],ObjectFetchOptions) Method
The OID(s) of the object(s) to fetch
Options controlling the fetch operation


In This Topic
    GetObjects(OID[],ObjectFetchOptions) Method
    In This Topic
    Gets the objects with the specified OIDs.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Overloads Function GetObjects( _
       ByVal OIDs() As OID, _
       ByVal options As ObjectFetchOptions _
    ) As ADTObjectCollection
    [NotNull()]
    public ADTObjectCollection GetObjects( 
       OID[] OIDs,
       ObjectFetchOptions options
    )
    [NotNull()]
    public:
    ADTObjectCollection^ GetObjects( 
       array<OID^>^ OIDs,
       ObjectFetchOptions options
    ) 

    Parameters

    OIDs
    The OID(s) of the object(s) to fetch
    options
    Options controlling the fetch operation

    Return Value

    The requested object.
    Remarks

    Any invalid OIDs or objects for which the caller does not have permission are silently ignored.

    This method allows you to select how the requested object is returned. See the remarks for ArcanaDevelopment.adTempus.Shared.ObjectFetchOptions for more information.

    See Also